home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / msdos / cc / opttbl.h < prev   
C/C++ Source or Header  |  1991-10-18  |  583b  |  19 lines

  1. #define  _LIB    (1)    /*  ドライバが処理するオプション  */
  2. #define  _NEW    (2)
  3. #define  _TEST   (3)
  4. #define  _ENV    (4)
  5. #define  _HIGH   (10)    /*   HC386P が処理するオプション  */
  6. #define  _LINK   (11)    /*   TLINKP が処理するオプション  */
  7.  
  8. struct OPT_TBL {        /*  オプションのテーブル      */
  9.     char *str;        /*  オプションの文字列        */
  10.     unsigned char type;    /*  オプションの種類          */
  11.     unsigned char num;    /*  オプションのパラメータ数  */
  12. };
  13.  
  14. extern struct OPT_TBL  opt_tbl[];
  15.  
  16. /*  オプションをテーブルから探す  */
  17. struct OPT_TBL *FindOption( char *option );
  18.  
  19.